PATHMac OS 8 and 9 Developer Documentation > Human Interface Toolbox > Appearance Manager >

Programming With the Appearance Manager


Theme Pop-Up Arrow Orientation Constants

You can use a constant of type ThemeArrowOrientation in the function DrawThemePopupArrow to specify the direction in which a pop-up arrow is drawn on a button. The ThemeArrowOrientation constants are available with Appearance Manager 1.1 and later.

enum {
    kThemeArrowLeft = 0,
    kThemeArrowDown = 1,
    kThemeArrowRight= 2,
    kThemeArrowUp   = 3
};
typedef UInt16 ThemeArrowOrientation;

Constant descriptions

kThemeArrowLeft
A left-pointing arrow.
kThemeArrowDown
A downward-pointing arrow.
kThemeArrowRight
A right-pointing arrow.
kThemeArrowUp
An upward-pointing arrow.

© 1999 Apple Computer, Inc. – (Last Updated 29 April 99)